home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sun Solutions 1997 April to September
/
Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso
/
products
/
IST
/
_install
/
run.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-01-23
|
542b
|
16 lines
#! /bin/sh
# currently company dir is manually placed-should change
COMPANY_DIR=$PRODUCT_DIR/IST
export COMPANY_DIR
if [ "$CDWARE_ENV" = "Solaris_2" ]
then
/usr/openwin/bin/xterm -geom 80x16 -sb -bg LightSteelBlue -fg black -sl 2000 -fn -adobe-courier-bold-r-normal--14-140-75-75-m-90-iso8859-1 -e $COMPANY_DIR/_install/SparcSolaris/run.sysedit
else
/usr/openwin/bin/xterm -geom 80x16 -sb -bg LightSteelBlue -fg black -sl 2000 -fn -adobe-courier-bold-r-normal--14-140-75-75-m-90-iso8859-1 -e $COMPANY_DIR/_demos/call_for_demo
fi
exit 0